/* ---- reset y base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a2e;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* ---- página ---- */
#pagina {
    width: 100%;
    max-width: 860px;
}

/* ---- tarjeta del reproductor ---- */

/* ---- 
    #reproductor {
        background-color: #979eb3;
        border-radius: 16px;
        padding: 36px 40px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }
---- */

h1 {
    color: #e0e0e0;
    font-size: 1.6rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

p {
    color: #e4e3e4;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

code {
    background-color: #0f3460;
    color: #e94560;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* ---- contenedor del vídeo ---- */
#contenedor-video {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    background-color: #000;} 


video {
    width: 100%;
    display: block;
}

/* ---- pie ---- */
.pie {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 0.85rem;
    color: #e4e3e4;
    text-align: center;
}
